home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Plug-in - QuickDraw Renderer / IRS_Geometry.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  1.6 KB  |  68 lines  |  [TEXT/CWIE]

  1. /******************************************************************************\
  2.                                                                         
  3.         Module:        IRS_Geometry.h                                            
  4.                                                                             
  5.         Purpose:     plug-in renderer for QD3D: geometry rendering                                
  6.                                                                         
  7.         Author:        Sun-Inn Shih                                        
  8.                                                                         
  9.         Copyright (C) 1993-96 Apple Computer, Inc.  All rights reserved.    
  10.                                                                             
  11. \*****************************************************************************/
  12. #ifndef IRS_GEOMETRY_H
  13. #define IRS_GEOMETRY_H
  14.  
  15. #include <QD3D.h>
  16. #include <QD3DGeometry.h>
  17. #include "IRShell.h"
  18.  
  19. /*
  20.  *  IRS_Geometry_Triangle 
  21.  */
  22. TQ3Status IRS_Geometry_Triangle(
  23.     TQ3ViewObject         pView,
  24.     irsData                *irsdata,
  25.     TQ3GeometryObject    pGeom, 
  26.     TQ3TriangleData        *pTriangleData);
  27.  
  28. /*
  29.  *  IRS_Geometry_Line 
  30.  */
  31. TQ3Status IRS_Geometry_Line(
  32.     TQ3ViewObject         pView,
  33.     irsData                *irsdata,
  34.     TQ3GeometryObject    pGeom, 
  35.     TQ3LineData            *pLineData);
  36.  
  37. /*
  38.  *  IRS_Geometry_Point 
  39.  */
  40. TQ3Status IRS_Geometry_Point(
  41.     TQ3ViewObject         pView,
  42.     irsData                *irsdata,
  43.     TQ3GeometryObject     pGeom, 
  44.     TQ3PointData        *pPointData);
  45. /*
  46.  *  IRS_Geometry_Marker 
  47.  */
  48. TQ3Status IRS_Geometry_Marker(
  49.     TQ3ViewObject         pView,
  50.     irsData                *irsdata,
  51.     TQ3GeometryObject     pGeom, 
  52.     TQ3MarkerData        *pMarkerData);
  53. /*
  54.  *  IRS_Geometry_PixmapMarker 
  55.  */
  56. TQ3Status IRS_Geometry_PixmapMarker(
  57.     TQ3ViewObject         pView,
  58.     irsData                    *irsdata,
  59.     TQ3GeometryObject     pGeom, 
  60.     TQ3PixmapMarkerData    *pPixmapMarkerData);
  61.  
  62. TQ3Status IRS_Geometry_TM (
  63.                                 TQ3ViewObject         pView,
  64.                                 irsData                *irsdata,
  65.                                 TQ3GeometryObject    pGeom, 
  66.                                 TQ3TriMeshData        *pTriMeshData ) ;
  67.  
  68. #endif